COPY MEMORY

This command will copy a chunk of data from one part of memory to another.

  Syntax
COPY MEMORY Memory Destination, Memory Source, Size In Bytes
  Parameters
Memory Destination
Dword
This value is a positive number between 0 and 4294967295.
Memory Source
Dword
This value is a positive number between 0 and 4294967295.
Size In Bytes
Integer
This value is an integer number such as 1.

  Returns

This command does not return a value.

  Description

Ideally this command is used to copy data from one memory block to another, or to and from a locked resource in memory. Look at the MAKE MEMORY command for details on how to create a memory block.

  Example Code
dst as DWORD
src as DWORD
dst=MAKE MEMORY(1024)
src=MAKE MEMORY(1024)
COPY MEMORY dst,src,512
WAIT KEY
  See also

CORE Commands Menu
Index